home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_055 / csh / makefile < prev    next >
Makefile  |  1992-05-06  |  914b  |  48 lines

  1. ######################################################################
  2. #
  3. # Makefile to build Shell 2.05M
  4. # by Steve Drew 20-Jan-87
  5. #
  6. # Hope you've patched c.lib (fexec) for 1.2 by now.
  7. #
  8. ######################################################################
  9.  
  10. OBJS    = run.o main.o comm1.o comm2.o execom.o set.o sub.o \
  11.     globals.o RawConsole.o sort.o
  12.  
  13.  
  14. INCL    = shell.h
  15.  
  16.  
  17. Shell    : $(OBJS)
  18.     ln   -o Shell $(OBJS) -lc
  19.  
  20. RawConsole.o : RawConsole.c $(INCL)
  21.     cc    +IShell.syms RawConsole.c
  22.  
  23. run.o   : run.c $(INCL)
  24.     cc    +HShell.syms run.c
  25.  
  26. main.o  : main.c $(INCL)
  27.     cc    +IShell.syms main.c
  28.  
  29. comm1.o    : comm1.c $(INCL)
  30.     cc    +IShell.syms comm1.c
  31.  
  32. comm2.o    : comm2.c $(INCL)
  33.     cc    +IShell.syms comm2.c
  34.  
  35. set.o    : set.c $(INCL)
  36.     cc    +IShell.syms set.c
  37.  
  38. sub.o    : sub.c $(INCL)
  39.     cc    +IShell.syms sub.c
  40.  
  41. globals.o : globals.c $(INCL)
  42.     cc    +IShell.syms globals.c
  43.  
  44. execom.o : execom.c $(INCL)
  45.     cc    +IShell.syms execom.c
  46.  
  47.  
  48.